home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / AUTODOX2.ARJ / SAMPLE1.PAS < prev    next >
Pascal/Delphi Source File  |  1992-07-10  |  668b  |  50 lines

  1. Program SAMPLE1;
  2. Uses CRT, DOS, AnyUnits, etc, etc, etc.;
  3.  
  4. Procedure ONE(a:integer,
  5.               b:real,
  6.               c:char);
  7. Begin
  8.          .
  9.          .
  10.      code goes here
  11.          .
  12.          .
  13. End;
  14.  
  15. Procedure TWO(a:integer,
  16.               b:real,
  17.               c:char);
  18. Begin
  19.          .
  20.          .
  21.      code goes here
  22.          .
  23.          .
  24. End;
  25.  
  26. Procedure Three;
  27. Begin
  28.          .
  29.          .
  30.      code goes here
  31.          .
  32.          .
  33. End;
  34.  
  35. Function Four():Boolean;
  36. Begin
  37.          .
  38.          .
  39.      code goes here
  40.          .
  41.          .
  42. End;
  43.  
  44. Begin
  45.          .
  46.          .
  47.      code goes here
  48.          .
  49.          .
  50. End.